home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / CENTERA.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-31  |  196 b   |  9 lines

  1. void AtSayA( int x, int y, unsigned char attrib, char *s );
  2.  
  3. #include <string.h>
  4.  
  5. void CenterA( int y, unsigned char attrib, char *s )
  6. {
  7.     AtSayA( ( 80 - strlen(s) ) / 2, y, attrib, s );
  8. }
  9.